GetPartialAXTreeRequest

data class GetPartialAXTreeRequest(nodeId: NodeId?, backendNodeId: BackendNodeId?, objectId: RemoteObjectId?, fetchRelatives: Boolean?)

Represents request frame that can be used with Accessibility#getPartialAXTree operation call.

Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists.

See also

Constructors

GetPartialAXTreeRequest
Link copied to clipboard
fun GetPartialAXTreeRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null, fetchRelatives: Boolean? = null)

Properties

backendNodeId
Link copied to clipboard
val backendNodeId: BackendNodeId? = null
Identifier of the backend node to get the partial accessibility tree for.
fetchRelatives
Link copied to clipboard
val fetchRelatives: Boolean? = null
Whether to fetch this nodes ancestors, siblings and children.
nodeId
Link copied to clipboard
val nodeId: NodeId? = null
Identifier of the node to get the partial accessibility tree for.
objectId
Link copied to clipboard
val objectId: RemoteObjectId? = null
JavaScript object id of the node wrapper to get the partial accessibility tree for.

Sources

jvm source
Link copied to clipboard